home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 April / Designer's Club 1998 April.iso / pc / Ideasrc / TAIL.DIR / 00083_Script_83 < prev   
Text File  |  1998-03-13  |  472b  |  26 lines

  1. on exitFrame
  2.   
  3.   repeat with n=9 to 13
  4.     if rollover(n) then
  5.       set the visible of sprite n to false
  6.       updatestage
  7.     end if
  8.   end repeat
  9.   
  10.   repeat with n=9 to 13
  11.     if not rollover(n) then
  12.       set the visible of sprite n to true
  13.       updatestage
  14.     end if
  15.   end repeat
  16.   if soundbusy(1) then 
  17.     go the frame
  18.   else
  19.     startTimer
  20.     repeat while the timer < 60
  21.       nothing
  22.     end repeat
  23.     go movie "main"
  24.   end if
  25.   
  26. end